Characteristic

@Serializable
data class Characteristic(val id: Int, val geneModulo: Int, val possibleValues: List<Int>, val descriptions: List<Description>) : Model(source)

Characteristics help determine which stats are likely to be the highest for a Pokémon. See: https://pokeapi.co/docs/v2#characteristics

Parameters

id

The identifier for this characteristic resource.

geneModulo

The remainder of the highest stat's IV divided by 5.

possibleValues

A list of possible values for the highest stat.

descriptions

The descriptions for this characteristic listed in different languages.

Constructors

Link copied to clipboard
constructor(id: Int, geneModulo: Int, possibleValues: List<Int>, descriptions: List<Description>)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
open override val id: Int
Link copied to clipboard